<!-- TWO STEPS TO INSTALL INFO STORIES: 1. Paste the first code into the HEAD of your HTML document --> 2. Add the last coding into the BODY of your HTML document --> <!-- STEP ONE: Paste the first code into the HEAD of your HTML document --> <HEAD> <SCRIPT LANGUAGE="JavaScript"> <!--Total Java Scripts 99 - Next Step Software--> <!-- Begin function linkDisplay(selection) { if (selection=="1") { document.form.info.value="Answers to the most common questions we receive are posted here for your review!"; document.form.go.value="http://faq.javascriptsource.com"; } else if(selection=="2") { document.form.info.value="Find out what's new since you last visited! Stay up to date with us!"; document.form.go.value="http://javascriptsource.com/main/new.html"; } else if(selection=="3") { document.form.info.value="Help us get to know you better, take our completely anonymous visitor survey!"; document.form.go.value="http://javascriptsource.com/survey.html"; } else if(selection=="4") { document.form.info.value="Post your question or problem here so other fellow JavaScripters can help you!"; document.form.go.value="http://forum.javascriptsource.com"; } else if(selection=="5") { document.form.info.value="Don't have time to cut & paste?\nTry our Email-a-Script feature!"; document.form.go.value="http://javascriptsource.com"; } else if(selection=="6") { document.form.info.value="Not sure where that particular JavaScript is? Search our web site!"; document.form.go.value="http://search.javascriptsource.com"; } else { document.form.info.value = "For more information, please email us."; document.form.go.value="mailto:webmaster@javascriptsource.com"; } } function moreInfo() { var page=document.form.go.value; window.location=page; } // End --> </script> <!-- STEP TWO: Add the last coding into the BODY of your HTML document --> <BODY> <center> <form name=form> <table border=0 width=400> <tr> <td align=center><a href="javascript:linkDisplay(1);">F.A.Q.'s</a><br></td> <td align=center><a href="javascript:linkDisplay(2);">What's New?</a><br></td> <td align=center><a href="javascript:linkDisplay(3);">Visitor Survey</a><br></td> </tr> <tr> <td align=center><a href="javascript:linkDisplay(4);">JavaScript Forum</a><br></td> <td align=center><a href="javascript:linkDisplay(5);">"Email-a-Script"!</a><br></td> <td align=center><a href="javascript:linkDisplay(6);">Site Search Engine</a><br></td> </tr> <tr> <td colspan=3 align=center> <textarea name=info rows=2 cols=40 wrap=virtual>Click a topic above for more info!</textarea><br> <input type=button name=button value="Go There!" onClick="moreInfo()"> <input type=hidden name=go value=""> </td></tr> </table> </form> </center> <!-- Script Size: 2.82 KB -->
1998 Copyright (C) Next Step All Rights Reserved